home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 425 b | 26 lines | [TEXT/CWIE] |
- // CommandHandler.h
-
- #ifndef CommandHandler_h
- #define CommandHandler_h
-
- #ifndef CommandLink_h
- #include "CommandLink.h"
- #endif
-
- template < class Protocol >
- class CommandHandler: public Protocol
- {
- private:
- CommandLink< Protocol > link;
-
- public:
- CommandHandler( Focus& focus )
- : link( focus, *this )
- {}
-
- Enableable& Link() { return link; }
- const Enableable& Link() const { return link; }
- };
-
- #endif
-